b02ad0deaae78424356f9a4b1748fc43b21eac03,modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheIoManager.java,GridCacheIoManager,onMessage0,#UUID#GridCacheMessage#IgniteBiInClosure#,349
Before Change
@SuppressWarnings({"unchecked", "ConstantConditions", "ThrowableResultOfMethodCallIgnored"})
private void onMessage0(final UUID nodeId, final GridCacheMessage cacheMsg,
final IgniteBiInClosure<UUID, GridCacheMessage> c) {
rw.readLock();
try {
if (stopping) {
After Change
@SuppressWarnings({"unchecked", "ConstantConditions", "ThrowableResultOfMethodCallIgnored"})
private void onMessage0(final UUID nodeId, final GridCacheMessage cacheMsg,
final IgniteBiInClosure<UUID, GridCacheMessage> c) {
Lock lock = rw.readLock();
lock.lock();
try {
if (stopping) {